#contact {
    width: 100vw;
    height: 100vh;
    background-color: black;
    overflow-x: hidden;
}

#his-box {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
}

#hist{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: wheat;
    border-radius: 20px;
    width: 80vw;
    height: 80vh;
    margin-top: 2%;
    overflow-y: scroll;
    overflow-x: hidden;
}

#hist-tit {
    text-align: center;
    width: 40vw;
    height: 10vh;
    background-color: black;
    color: wheat;
    margin-top: 2%;
    padding: 2%;
    border-radius: 200px;
}

#his-con{
    padding: 2%;
    width: 80vw;
    height: auto;
    text-align:justify;
}

@media (max-width: 700px){
    #hist{
      width: 80vw;
      height: 70vh;
    
    }
    #hist-tit {
        text-align: center;
        width: 70vw;
        height: 10vh;
        border-radius: 20px;
    }

    #his-con{
        width: 70vw;
        text-align:start;
    }

}